GtkBuilder: Improve error messages
authorMatthias Clasen <mclasen@redhat.com>
Fri, 22 Aug 2014 15:04:07 +0000 (11:04 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 30 Sep 2014 03:05:21 +0000 (23:05 -0400)
No `' looks just terrible. For quoting in non-UI contexts, we
prefer either '' or "".

https://bugzilla.gnome.org/show_bug.cgi?id=735192

gtk/gtkbuilder-menus.c
gtk/gtkbuilderparser.c

index 1b36f6828e6d7e3ee7eea5a078dd9277be246079..8a42faa9f947a472795e13fd545086e0b1998a93 100644 (file)
@@ -314,7 +314,7 @@ gtk_builder_menu_text (GMarkupParseContext  *context,
 
         else
           g_set_error (error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT,
-                       _("text may not appear inside <%s>"),
+                       _("Text may not appear inside <%s>"),
                        g_markup_parse_context_get_element (context));
         break;
       }
index 9b349938661e5caa3221b25ef970f23773d1354c..ab7d3d49a81c3d61bceb4bb3193709b352a67a6f 100644 (file)
@@ -337,7 +337,7 @@ parse_object (GMarkupParseContext  *context,
               g_markup_parse_context_get_position (context, &line, NULL);
               g_set_error (error, GTK_BUILDER_ERROR,
                            GTK_BUILDER_ERROR_INVALID_VALUE,
-                           _("Invalid object type `%s' on line %d"),
+                           _("Invalid object type '%s' on line %d"),
                            values[i], line);
               return;
             }
@@ -772,7 +772,7 @@ parse_signal (ParserData   *data,
               g_markup_parse_context_get_position (data->ctx, &line, NULL);
               g_set_error (error, GTK_BUILDER_ERROR,
                            GTK_BUILDER_ERROR_INVALID_SIGNAL,
-                           _("Invalid signal `%s' for type `%s' on line %d"),
+                           _("Invalid signal '%s' for type '%s' on line %d"),
                            values[i], g_type_name (object_info->type), line);
               return;
             }
@@ -1064,7 +1064,7 @@ start_element (GMarkupParseContext *context,
     {
       g_set_error (error, GTK_BUILDER_ERROR, 
                   GTK_BUILDER_ERROR_UNHANDLED_TAG,
-                  _("Invalid root element: '%s'"),
+                  _("Invalid root element: <%s>"),
                   element_name);
       return;
     }
@@ -1107,7 +1107,7 @@ start_element (GMarkupParseContext *context,
                       data, error))
       g_set_error (error, GTK_BUILDER_ERROR, 
                   GTK_BUILDER_ERROR_UNHANDLED_TAG,
-                  _("Unhandled tag: '%s'"),
+                  _("Unhandled tag: <%s>"),
                   element_name);
 }